home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / CDICTION / CPASCALS.C < prev    next >
Text File  |  1990-01-12  |  513b  |  19 lines

  1.  
  2. #include "CPascalString.h"
  3. #include "CDataFile.h"
  4. #include "TBUtilities.h"
  5.  
  6. /*****************************************************************/
  7. void CPascalString::SetString( StringPtr string)
  8. {
  9.     pStrCopy( string, itsString);
  10.  
  11. }    /* CPascalString::SetString */
  12. /*****************************************************************/
  13. void CPascalString::GetString( StringPtr string)
  14. {
  15.     pStrCopy( itsString, string);
  16.  
  17. }    /* CPascalString::GetString */
  18. /*****************************************************************/
  19.